python create new pandas dataframe with specific columns

41

python create new pandas dataframe with specific columns -

# Basic syntax:
new_dataframe = old_dataframe.filter(['Columns','you','want'], axis=1)

select columns to include in new dataframe in python -

new = old[['A', 'C', 'D']].copy()

copy only some columns to new dataframe in r -

new = pd.DataFrame([old.A, old.B, old.C]).transpose()

Comments

Submit
0 Comments